Menu
Your Cart

New Keyboard for ASUS VivoBook X512 – US Silver

New Keyboard for ASUS VivoBook X512 – US Silver
New Keyboard for ASUS VivoBook X512 – US Silver
  • Price: TK 1,000/-
  • Stock: In Stock
  • Model: VivoBook X512 – US Silver
TK 1,000/-
Ex Tax: TK 1,000/-

Key Features

    • Keyboard For: ASUS Laptop
    • Model: ASUS X512
    • Condition: Brand New
    • Compatible For: ASUS X512, X512FA, X512DA, X512U, X512UA, and X512UB
    • Layout: US
    • Warranty: 3 Month
Specification
General Feature
BrandAsus
ModelASUS X512, X512FA, X512DA, X512U, X512UA, and X512UB
Physical Attributes
ColorSilver
Backlit OptionNo
LayoutUS
Warranty Information
Warranty3 Month
Description

New Keyboard for ASUS VivoBook X512 – US Silver at Dear IT Solution


Enhance your ASUS VivoBook X512 series laptop with a brand new US Silver keyboard from Dear IT Solution. This replacement keyboard is designed to perfectly match the specifications of your laptop, offering both functionality and a stylish aesthetic.

Product Features

Supported Models

This keyboard is compatible with the ASUS VivoBook X512 series, including models X512, X512FA, X512DA, X512U, X512UA, and X512UB. It ensures a perfect fit and seamless integration with these models.

US English Layout

The keyboard features a US English layout, providing a familiar and intuitive typing experience. It is ideal for various tasks, from professional work to everyday use.

Sleek Silver Design

Finished in a sleek silver color, this keyboard complements the modern design of your ASUS VivoBook. The silver finish adds a touch of elegance to your device, enhancing its overall look.

Backlit Functionality

Designed with backlit keys, this keyboard allows for easy typing in low-light conditions. The backlighting improves visibility, making it convenient to use your laptop in dim environments.

Durable and Reliable

Constructed from high-quality materials, this keyboard is built to last. It offers reliable performance and durability, ensuring long-term use without compromising on quality.

Warranty and Support

At Dear IT Solution, we provide a warranty covering any manufacturer defects, giving you confidence in the quality of your purchase. Our customer support team is always ready to assist with any inquiries or issues.

Conclusion

Upgrade your ASUS VivoBook X512, X512FA, X512DA, X512U, X512UA, or X512UB with a high-quality US Silver keyboard from Dear IT Solution. With its sleek design, backlit functionality, and durable construction, this keyboard is the perfect replacement to enhance your laptop's performance and appearance. Visit Dear IT Solution today to secure your new keyboard and enjoy an improved typing experience.


Review

Write a review

Note: HTML is not translated!
Bad Good
Critial Path: Hello world!
Hello world!
/** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};